home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 27
/
CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso
/
CUCD
/
Sound
/
SPlayer
/
ARexxWebServer
/
webserver
/
counter.cgi
next >
Wrap
Text File
|
1998-06-29
|
692b
|
38 lines
/*
$VER: DFD Counter v1.0 alpha2 (30-Oct-96)
*/
options results
path = 'amitcp:www/cgi-bin/'
parse arg data'+'opt
if index(data,"/")~=0 then exit
if index(data,":")~=0 then exit
if open(x,path||data,'R') then do
number = readln(x)
if number<1 then number=0
call close(x)
number = number+1
ext=''
if opt=1 then do
ext='th' ; last1=right(number,1) ; last2=right(number,2)
if last1=1 then ext='st'
if last1=2 then ext='nd'
if last1=3 then ext='rd'
if last2>10 & last2<14 then ext='th'
end
call writech(STDOUT,number||ext)
end
else do
number=1
call writech(STDOUT,number'st')
end
call open(y,path||data,'W')
call writeln(y,number)
call close(y)
exit